Dynomotion

Group: DynoMotion Message: 2606 From: Brad Murry Date: 12/5/2011
Subject: MAIN_STATUS Structure

Hello Tom,

 

   I am planning to implement the MAIN_STATUS Structure in the interop and had a few lingering questions.

 

To keep it simple and performant, I will just break out each member of this structure as separate to avoid any hex parsing or class interop.

 

 

  #define STAT_VERSION 307

typedef struct

{

                int VersionAndSize;   //bits 16-23 = version, bits 0-15 = size in words                         Can I get a code snippet for how to use this?

                int ADC[N_ADCS+2*N_ADCS_SNAP];                                                                                     Can I get a code snippet for how to use this?

 

                int DAC[N_DACS];                                                                                                                             Can I get a code snippet for how to use this?

 

                int PWM[N_PWMS+2*N_PWMS_SNAP];                                                                               Can I get a code snippet for how to use this?

                double Position[N_CHANNELS];                                                                                                 Can I assume theses values are in counts and axis channel # == array index?

                double Dest[N_CHANNELS];                                                                                                        Can I assume theses values are in counts and axis channel # == array index?

 

                unsigned char OutputChan0[N_CHANNELS];                                                                         Can I get a code snippet for how to use this?

 

                 

                int InputModes;      // 4 bits for each axis                                                                                 Can I get a code snippet for how to use this?

 

                int InputModes2;     // 4 bits for each axis                                                                               Can I get a code snippet for how to use this?

 

                int OutputModes;     // 4 bits for each axis                                                                              Can I get a code snippet for how to use this?

 

                int OutputModes2;    // 4 bits for each axis                                                                            Can I get a code snippet for how to use this?

 

                int Enables;         // 1 bit  for each axis                                                                                        Can I get a code snippet for how to use this?

 

                int AxisDone;        // 1 bit  for each axis                                                                                     Can I get a code snippet for how to use this?

 

               

                int BitsDirection[2];// KMotion - 64 bits of I/O direction 1 = output                              Can I get a code snippet for how to use this?

 

                int BitsState[2];    // KMotion - 64 bits of state lsb=I/O bit0                                              Can I get a code snippet for how to use this?

 

                int SnapBitsDirection0;   // Snap - 32 bits of I/O direction 1=output 16-29 GPIO only, Card 0                                              Can I get a code snippet for how to use this?

                int SnapBitsDirection1;   // Snap - 32 bits of I/O direction 1=output 16-29 GPIO only, Card 1                                              Can I get a code snippet for how to use this?

                int SnapBitsState0;       // Snap - 32 bits of state  16-29 GPIO 0-7 Diff 8-15 OPTO, Card 0                                              Can I get a code snippet for how to use this?

                int SnapBitsState1;       // Snap - 32 bits of state  16-29 GPIO 0-7 Diff 8-15 OPTO, Card 1                                              Can I get a code snippet for how to use this?

               

                int KanalogBitsStateInputs;   // Kanalog - 16 bits 128-143                                              Can I get a code snippet for how to use this?

                int KanalogBitsStateOutputs;  // Kanalog - 24 bits 144-167                                              Can I get a code snippet for how to use this?

 

                int RunOnStartUp;    // word Bits 1-7 selects which threads to execute on startup                                                 Can I get a code snippet for how to use this?

               

                int ThreadActive;                             // one bit for each thread, 1=active, bit 0 - primary                                              Can I get a code snippet for how to use this?

                int StopImmediateState;    // Status of Stop Coordinated Motion Immediately                                              Can I get a code snippet for how to use this?

 

                double TimeStamp;        // Time in seconds (since KFlop boot) this status was aquired

                int           PC_comm[N_PC_COMM_PERSIST];// 8 persist Variables constantly uploaded to send misc commands/data to PC                                              Can I get a code snippet for how to use this?

 

} MAIN_STATUS;  

 

 

Sorry for the large request.

 

If you can point me to where these members are used or write a simple one-liner for their use it will accelerate the implantation and I would very much appreciate it.

 

-Brad

Group: DynoMotion Message: 2611 From: Tom Kerekes Date: 12/5/2011
Subject: Re: MAIN_STATUS Structure


Group: DynoMotion Message: 2614 From: Brad Murry Date: 12/6/2011
Subject: Re: MAIN_STATUS Structure
Hello Tom

This is perfect, thanks for the total breakdown.


The only thing left I am unclear on is how/when to update this structure? Or is it automagical?

-Brad

Group: DynoMotion Message: 2615 From: bradodarb Date: 12/6/2011
Subject: Re: MAIN_STATUS Structure
I also do not see where you are initializing the struct.... how are you assigning it to a particular board?



--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Hello Tom
>
> This is perfect, thanks for the total breakdown.
>
>
> The only thing left I am unclear on is how/when to update this structure? Or is it automagical?
>
> -Brad
>
>
Group: DynoMotion Message: 2616 From: TK Date: 12/6/2011
Subject: Re: MAIN_STATUS Structure
Hi Brad,

In KMotionCNC a 100ms timer is used to upload the entire structure as a binary block of data. The MAIN_STATUS structure is in the PC_DSP.h file so the data layout is  common on both sides. If the upload is successful then all the screen status and such is updated.  Search for that structure type in KMotionCNC to see how it does it. KMotionCNC only supports one KFLOP.  To support multiple boards you would need multiple instances of the structure and upload them individually. 

TK

On Dec 6, 2011, at 10:24 AM, "bradodarb" <bradodarb@...> wrote:

 

I also do not see where you are initializing the struct.... how are you assigning it to a particular board?

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Hello Tom
>
> This is perfect, thanks for the total breakdown.
>
>
> The only thing left I am unclear on is how/when to update this structure? Or is it automagical?
>
> -Brad
>
>
Group: DynoMotion Message: 2617 From: Brad Murry Date: 12/6/2011
Subject: Re: MAIN_STATUS Structure

Hello Tom,

 

Ahh… I see Use the script command.. (  http://www.dynomotion.com/Help/Cmd.htm#GetStatus  ) sorry about that.

 

 

“”To support multiple boards you would need multiple instances of the structure and upload them individually. “”

 

I’m not sure how I would do this with the script command, has it been done before; if so how?

 

I realize multiple board systems are probably uncommon, but since I have tried to support it for the rest of the .net interop I would like to also support it in the structure.

 

Thank you,

 

Brad Murry

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK
Sent: Tuesday, December 06, 2011 11:42 AM
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Re: MAIN_STATUS Structure

 

 

Hi Brad,

 

In KMotionCNC a 100ms timer is used to upload the entire structure as a binary block of data. The MAIN_STATUS structure is in the PC_DSP.h file so the data layout is  common on both sides. If the upload is successful then all the screen status and such is updated.  Search for that structure type in KMotionCNC to see how it does it. KMotionCNC only supports one KFLOP.  To support multiple boards you would need multiple instances of the structure and upload them individually. 

TK


On Dec 6, 2011, at 10:24 AM, "bradodarb" <bradodarb@...> wrote:

 

I also do not see where you are initializing the struct.... how are you assigning it to a particular board?

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Hello Tom
>
> This is perfect, thanks for the total breakdown.
>
>
> The only thing left I am unclear on is how/when to update this structure? Or is it automagical?
>
> -Brad
>
>
Group: DynoMotion Message: 2618 From: Brad Murry Date: 12/6/2011
Subject: Re: MAIN_STATUS Structure

Hello Tom

 

Yet another question….

 

Main Status is Read Only right?  Only to be used to gather data from the kflop, not to set?

 

-Brad

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Brad Murry
Sent: Tuesday, December 06, 2011 11:55 AM
To: DynoMotion@yahoogroups.com
Subject: RE: [DynoMotion] Re: MAIN_STATUS Structure

 

 

Hello Tom,

 

Ahh… I see Use the script command.. (  http://www.dynomotion.com/Help/Cmd.htm#GetStatus  ) sorry about that.

 

 

“”To support multiple boards you would need multiple instances of the structure and upload them individually. “”

 

I’m not sure how I would do this with the script command, has it been done before; if so how?

 

I realize multiple board systems are probably uncommon, but since I have tried to support it for the rest of the .net interop I would like to also support it in the structure.

 

Thank you,

 

Brad Murry

 

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK
Sent: Tuesday, December 06, 2011 11:42 AM
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Re: MAIN_STATUS Structure

 

 

Hi Brad,

 

In KMotionCNC a 100ms timer is used to upload the entire structure as a binary block of data. The MAIN_STATUS structure is in the PC_DSP.h file so the data layout is  common on both sides. If the upload is successful then all the screen status and such is updated.  Search for that structure type in KMotionCNC to see how it does it. KMotionCNC only supports one KFLOP.  To support multiple boards you would need multiple instances of the structure and upload them individually. 

TK


On Dec 6, 2011, at 10:24 AM, "bradodarb" <bradodarb@...> wrote:

 

I also do not see where you are initializing the struct.... how are you assigning it to a particular board?

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Hello Tom
>
> This is perfect, thanks for the total breakdown.
>
>
> The only thing left I am unclear on is how/when to update this structure? Or is it automagical?
>
> -Brad
>
>
Group: DynoMotion Message: 2619 From: Tom Kerekes Date: 12/6/2011
Subject: Re: MAIN_STATUS Structure
Hi Brad,
 
Yes is is read only.  No I don't have an example of GetStatus from two boards.
 
Regards
TK